home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2001 May / SGI Freeware 2001 May - Disc 3.iso / dist / fw_expect.idb / usr / freeware / src / expect / patches.z / patches
Text File  |  1999-01-26  |  3KB  |  69 lines

  1. *** ./example/rftp    Fri May  3 16:01:49 1996
  2. --- ../expect-5.28/./example/rftp    Tue Dec 22 11:49:10 1998
  3. ***************
  4. *** 309,315 ****
  5.   set first_time 1
  6.   
  7.   if $argc>1 {
  8. !     send_user "usage: rftp [host]
  9.       exit
  10.   }
  11.   
  12. --- 309,315 ----
  13.   set first_time 1
  14.   
  15.   if $argc>1 {
  16. !     send_user "usage: rftp [host]"
  17.       exit
  18.   }
  19.   
  20. *** ./Makefile.in    Mon Sep 21 18:02:16 1998
  21. --- ../expect-5.28/./Makefile.in    Wed Oct 28 13:32:07 1998
  22. ***************
  23. *** 387,397 ****
  24.   # but there's no way to write a rule that says shared/XYZ.o should
  25.   # depend on XYZ.c in a different directory (except by writing the
  26.   # rule out for each file, sigh).
  27.   $(EXP_SHARED_LIB_FILE): $(OFILES)
  28.       -rm -f $(EXP_SHARED_LIB_FILE)
  29. !     @TCL_SHLIB_LD@ -o $(EXP_SHARED_LIB_FILE) $(SHARED_OFILES) @EXP_LD_SEARCH_FLAGS@ @EXP_SHLIB_LD_LIBS@
  30.   
  31. ! .PHONY: install-info install info
  32.   install-info:
  33.   
  34.   install:    expect expect_installed ${X11_PROGS_INSTALLED} $(SCRIPTS)
  35. --- 387,400 ----
  36.   # but there's no way to write a rule that says shared/XYZ.o should
  37.   # depend on XYZ.c in a different directory (except by writing the
  38.   # rule out for each file, sigh).
  39. + EXP_LD_SEARCH_FLAGS = @EXP_LD_SEARCH_FLAGS@
  40.   $(EXP_SHARED_LIB_FILE): $(OFILES)
  41.       -rm -f $(EXP_SHARED_LIB_FILE)
  42. !     @TCL_SHLIB_LD@ $(SHLIB_LDFLAGS) -o $(EXP_SHARED_LIB_FILE) $(SHARED_OFILES) $(EXP_LD_SEARCH_FLAGS) @EXP_SHLIB_LD_LIBS@
  43.   
  44. ! .PHONY: install-info install info scripts
  45. ! scripts: $(SCRIPTS)
  46.   install-info:
  47.   
  48.   install:    expect expect_installed ${X11_PROGS_INSTALLED} $(SCRIPTS)
  49. *** ./pty_termios.c    Mon Mar 16 13:53:41 1998
  50. --- ../expect-5.28/./pty_termios.c    Mon Oct 26 15:44:50 1998
  51. ***************
  52. *** 375,381 ****
  53.       } else if (grantpt(master)) {
  54.           static char buf[500];
  55.           exp_pty_error = buf;
  56. !         sprintf(exp_pty_error,"grantpt(%d) failed - likely reason is that your system administrator (in a rage of blind passion to rid the system of security holes) removed setuid from the utility used internally by grantpt to change pty permissions.  Tell your system admin to reestablish setuid on the utility.  Get the utility name by running Expect under truss or trace.");
  57.           close(master);
  58.           return(-1);
  59.       }
  60. --- 375,381 ----
  61.       } else if (grantpt(master)) {
  62.           static char buf[500];
  63.           exp_pty_error = buf;
  64. !         sprintf(exp_pty_error,"grantpt(%d) failed - likely reason is that your system administrator (in a rage of blind passion to rid the system of security holes) removed setuid from the utility used internally by grantpt to change pty permissions.  Tell your system admin to reestablish setuid on the utility.  Get the utility name by running Expect under truss or trace.", master);
  65.           close(master);
  66.           return(-1);
  67.       }
  68.